home *** CD-ROM | disk | FTP | other *** search
/ Univers Mac Interactif 42 / Univers Mac Interactif - Issue 42.iso / Outils / Mariner 2.0.5 ƒ / Functions next >
Text File  |  1992-09-29  |  10KB  |  150 lines

  1. ABS(n)
  2. Returns the absolute value of n. The argument may be a number, cell or range reference or formula.
  3. EXP(n)
  4. Returns the base of the natural logarithm e (2.718...) raised to the power of n. Use the exponentiation operator to calculate other bases. EXP is the inverse of the LN function. The argument may be a number, cell or range reference or formula.
  5. INT(n)
  6. Returns the largest integer less than or equal to n. The argument may be a number, cell or range reference or formula.
  7. LOG(n)
  8. Returns the common or base 10 logrithm of n. The argument may be a number, cellor range reference or formula, and must be > 0.
  9. MOD(n,d)
  10. Returns the remainder after n is divided by d. The result will have the same sign as d. Arguments may be numbers, formulas or range references.
  11. 'RAND
  12. Returns a random integer every time the spreadsheet is recalculated. This function has no arguments.
  13. ROUND(n,d)
  14. Returns n rounded to [d] decimal places. If d is positive, n is rounded to d decimal places. If d is negative then n is n is rounded to the left of the decimal point. Arguments may be numbers range references, or formulas.
  15. SIGN(n)
  16. The sign function returns 1 if n is positive, 0 if n is 0 and -1 if n is negative. The argument may be a number, formula or range reference.
  17. SQRT(n)
  18. Returns the positive square root of n. The argument may be a number, formula or range reference.
  19. ACOS(n)
  20. Returns the arcCosine of n in radians. Argument may be a number, range reference, or formula. n should be in the range of -1 to 1, the function will return a value between 0 and PI.
  21. ASIN(n)
  22. Returns the arcSine of n in radians. Argument may be a number, range reference, or formula. n should be in the range of -1 to 1, the return value will be between -PI/2 to PI/2.
  23. ATAN2(x,y)
  24. Returns the arcTangent of point(x,y) in radians.
  25. Argument may be a number, range reference, or formula. The return value
  26. will be in the range -PI to PI.
  27. ATAN(angle)
  28. Returns the arcTangent of angle. Argument may be a number, range reference, or formula. Angle is assumed to be in radians.
  29. COS(angle)
  30. Returns the cosine of angle. Argument may be a number, range reference, or formula. Angle is assumed to be in radians.
  31. COT(angle)
  32. Returns the coTangent of angle. Argument may be a number, range reference, or formula. Angle is assumed to be in radians.
  33. DEGREES(angle)
  34. Converts angle in radians to degrees. Argument may be a number, range
  35. reference, or formula. Angle is assumed to be in radians.
  36. PI
  37. Returns the constant 3.1416...
  38. RADIANS(n)
  39. Converts n to radians. Argument may be a number, range reference, or formula. n is assumed to be an angle in degrees.
  40. SIN(angle)
  41. Returns the sine of angle. Argument may be a number, range reference, or formula. Angle is assumed to be in radians.
  42. TAN(angle)
  43. Returns the tangent of angle.
  44. Argument may be a number, range reference, or formula. Angle is assumed
  45. to be in radians.
  46. AND(n1,n2...)
  47. Returns TRUE (value 1) if all n values are non-zero. The list of arguments must be separated by commas, and may be numbers, range references, text or formulas.
  48. CHOOSE(index,n1,n2...)
  49. Returns n[index] value in argument list. The list must be separated by commas and may be numbers, text, range references or formulas. Choose will return *Error* if index is out of range of the list.
  50. ERROR
  51. This functions has no arguments and returns a numeric error value.
  52. FALSE
  53. Returns false value (0) and has no arguments.
  54. IF(n,true value, false value)
  55. Returns true value if n is non-Zero, false value if n= 0. Arguments may be numbers, range references, or formulas.
  56. ISBLANK(cell or range)
  57. Returns true (1) if cell is empty.
  58. ISERROR(n)
  59. Returns true (1) if n is error value or false (0) if not.
  60. ISHIDDEN(n)
  61. Returns true (1) if n is hidden value or false (0) if not.
  62. ISNA(n)
  63. Returns true (1) if n is error value N/A or false (0) if not.
  64. ISNUM(n)
  65. Returns true (1) if n is a number or false (0) if not.
  66. ADDTIME(n,years,months,days,hours,mins)
  67. Returns n plus the specified time amounts,allowing for easy calculation of
  68. non-standard time units(ie. is a month 28,29,30 or 31 days?). Arguments can be numbers, range references or formulas, arguments after year are optional.
  69. DAY(n)
  70. Returns the day portion of n (1-31).
  71. DOW(n)
  72. Returns the DayofWeek of n (1-sunday thru 7-saturday).
  73. HOUR(n)
  74. Returns the hour portion of n (0-23).
  75. MINUTE(n)
  76. Returns the minute portion of n (0-59).
  77. MONTH(n)
  78. Returns the month portion of n (1-12).
  79. NOW
  80. Returns the current time value, this function has no arguments.
  81. SECOND(n)
  82. Returns the second portion of n (0-59).
  83. YEAR(n)
  84. Returns the year portion of n (example 1992).
  85. CELL(column,row)
  86. Returns the value of a cell. Rows and columns start at address 0.
  87. COLUMN(cell)
  88. Returns the column number of cell. Address starts at 0.
  89. HIDE
  90. Returns the error value hide.
  91.  
  92. HLOOKUP(n,range,index)
  93. VLOOKUP(n,range,index)
  94. Searches first(HLookup=row,VLookUp=column) for largest value<=n. The function then moves (HLookup= up or down, VLookUp=right or left) the amount specified by index. The value found in that cell is returned. *Error* is returned if n < all values in search row or column.
  95. INDEX(range,column,row)
  96. Returns value of indexed cell starting from topLeft of range. Address 0,0 returns topLeft cell.
  97. PAGENUMBER
  98. Returns the printed page number cell is in.
  99. ROW(cell)
  100. Returns row number of cell or range. Row address starts at 0 for row 1.
  101. AVERAGE(n1,n2...)
  102. Returns the average of the numbers in a list of arguments. The list must be separated by commas, empty and text cells will be ignored. Arguments may be cells,ranges,numbers, or formulas.
  103. COUNT(n1,n2...)
  104. Returns the count of numbers in a list of arguments. Arguments may be cells, ranges, formulas, or numbers and MUST be separated by commas.
  105. MAX(n1,n2...)
  106. Returns the Largest number in a list of arguments.
  107. Arguments may be cells, ranges, formulas, or numbers and MUST be separated by commas.
  108. MIN(n1,n2...)
  109. Returns the smallest number in a list of arguments. Arguments may be cells, ranges, formulas, or numbers and MUST be separated by commas.
  110. SUM(n1,n2...)
  111. Returns the sum of the numbers in a list of arguments. Arguments may be cells, ranges, formulas, or numbers and MUST be separated by commas.
  112. STDEV(n1,n2...)
  113. Returns sample standard deviation of the numbers in a list of arguments.Arguments may be cells, ranges, formulas, or numbers and MUST be separated by commas. Empty and text cells will be ignored.
  114. VAR(n1,n2...)
  115. Returns sample variance of the numbers in a list of arguments. Arguments may be cells, ranges, formulas, or numbers and MUST be separated by commas. Empty and text cells will be ignored.
  116. ANNUITY(rate,periods)
  117. Returns annuity given rate and periods.
  118. COMPOUND(rate,periods)
  119. Returns compound interest determined by rate and periods.
  120. FV(rate,payment,periods)
  121. Returns future value  of an investment with constant cash flows.Rate is the interest rate, period  is the number of payment periods.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Rate and periods must refer to the same period, for example if periods is the number of months, then rate must be the monthly interest rate. FV assumes payments are made  at the end of each period, if payments are made at the beginning then multiply the result by (1+rate).
  122. IRR(guess,cash flows)
  123. Returns future value  of an investment with conatant cas flows.Rate is the interest rate, period  is the number of payment periods.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
  124. NPV(rate, cash Flows)
  125. Returns net PV of future cash flows discounted at a periodic interest rate.
  126. The cash flows are assumed to occur at equal periods, with the first occuring at the end of the first period.
  127. PMT(rate,principle,periods)
  128. Calculates the size of periodic payments necessary to pay off loan. PMT assumes payments are made  at the end of each period, if payments are made at the beginning then multiply the result by (1+rate).
  129. PV(rate, pmt, periods)
  130. Returns present value  of a series of equal payments, that collect the specified interest rate over the total number of periods. Rate is the interest rate, period  is the number of payment periods.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Rate and periods must refer to the same period, for example if periods is the number of months, then rate must be the monthly interest rate. PV assumes payments are made  at the end of each period, if payments are made at the beginning then multiply the result by (1+rate).
  131. ASC(n)
  132. Returns the ascii value of character n.
  133. CHR(n)
  134. Returns the ascii character of value n.
  135. LEFT(string,n)
  136. Returns the left most characters of string, n characters long.
  137. LENGTH(string)
  138. Returns the number of characters in string.
  139. MID(string,n,count)
  140. Returns substring of string, count characters long, star at character n.
  141. NUM2CHAR(n)
  142. Returns n converted into a text string.
  143. RIGHT(string,n)
  144. Returns the right most characters of string, n characters long.
  145. LOWER(string)
  146. Returns string converted to lowercase letters.
  147. UPPER(string)
  148. Returns string converted to uppercase letters.
  149.  
  150.